GetPropertiesRequest

data class GetPropertiesRequest(objectId: RemoteObjectId, ownProperties: Boolean?, accessorPropertiesOnly: Boolean?, generatePreview: Boolean?)

Represents request frame that can be used with Runtime#getProperties operation call.

Returns properties of a given object. Object group of the result is inherited from the target object.

See also

Constructors

GetPropertiesRequest
Link copied to clipboard
fun GetPropertiesRequest(objectId: RemoteObjectId, ownProperties: Boolean? = null, accessorPropertiesOnly: Boolean? = null, generatePreview: Boolean? = null)

Properties

accessorPropertiesOnly
Link copied to clipboard
val accessorPropertiesOnly: Boolean? = null
If true, returns accessor properties (with getter/setter) only; internal properties are not returned either.
generatePreview
Link copied to clipboard
val generatePreview: Boolean? = null
Whether preview should be generated for the results.
objectId
Link copied to clipboard
val objectId: RemoteObjectId
Identifier of the object to return properties for.
ownProperties
Link copied to clipboard
val ownProperties: Boolean? = null
If true, returns properties belonging only to the element itself, not to its prototype chain.

Sources

jvm source
Link copied to clipboard